In addition to the Mathias post, this is a way (using .htaccess) to allow this if file transfer is not possible:
<FilesMatch "\.(ttf|otf|eot|woff)$">
<IfModule mod_headers.c>
Header set Access-Control-Allow-Origin "*"
</IfModule>
</FilesMatch>
source
share