<?php
$file = "https://s3-us-west-1.amazonaws.com/media.designashirt.com/Fonts/Anton.ttf";
$local_file = 'Anton.ttf';
$handle = fopen($local_file, 'w') or die('Cannot open file: ' . $local_file);
$data = file_get_contents("https://s3-us-west-1.amazonaws.com/media.designashirt.com/Fonts/Anton.ttf");
fwrite($handle, $data);
fclose($handle);