先日、ドメイン変更したサイトで、以下のメッセージが表示されてフォントが読み込めない状況になりました。
hetemlやConoha WINGで症状がおきました。
Access to font at from origin has been blocked by CORS policy: No ‘Access-Control-Allow-Origin’ header is present on the requested resource
クロスドメインでもないのになぜ??と思ったのですが、解決方法がありました。

Access to font at from origin has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource
Ihavetwoproblemsinmywebsite:1)MixedContent:Thepageat'wasloadedoverHTTPS,butrequestedaninsecurefont'
<IfModule mod_headers.c>
Header set Access-Control-Allow-Origin "*"
</IfModule>
<FilesMatch ".(eot|ttf|otf|woff)">
Header set Access-Control-Allow-Origin "*"
</FilesMatch>