Font blocked from loading by Cross-Origin Resource Sharing policy: No 'Access-Control-Allow-Origin'
Change your htaccess file code on your website root directory (i.e. Your public_html ".htaccess" file)
<FilesMatch "\.(ttf|otf|eot|woff|woff2)$">
<IfModule mod_headers.c>
Header set Access-Control-Allow-Origin "http://skin.cdn.com"
</IfModule>
</FilesMatch>
Now your CDN will be allowed to load your resource calling them as a passing resource of yours (the fonts).
CAVEAT: You need to PURGE ALL in your CDN so the files will be updated in a few minutes.