I have a C# MVC project that I changed the font-family. On localhost, it works, but when it's on the server, it's not working.
On my _Layout.cshtml (a shared layout) I have the following reference of the font style:
<link rel="stylesheet" href="https://use.typekit.net/idk3wns.css">
And on my site.css file, I put that:
*{
font-family: indie-flower, sans-serif;
font-style: normal;
font-weight: 400;
}
Someone knows why it's happening this and how can I correct that?