Hello Nicolette,
Thanks for posting in! I have checked the faculty page and it seems that the Ess. Grid is using Proxima Nova as the main font family. You are using this css code to load the font:
@font-face{
font-family:"Proxima Nova";
font-display:"auto";
src:url("https://sunordic.org/wp-content/uploads/2019/10/ProximaNova-Black.ttf") format('truetype');
font-weight:600;
font-style:regular;
}
@font-face{
font-family:"Proxima Nova";
font-display:"auto";
src:url("https://sunordic.org/wp-content/uploads/2019/10/ProximaNova-Bold.ttf") format('truetype');
font-weight:700;
font-style:regular;
}
@font-face{
font-family:"Proxima Nova";
font-display:"auto";
src:url("https://sunordic.org/wp-content/uploads/2019/10/ProximaNova-Light.ttf") format('truetype');
font-weight:300;
font-style:regular;
}
@font-face{
font-family:"Proxima Nova";
font-display:"auto";
src:url("https://sunordic.org/wp-content/uploads/2019/10/ProximaNova-Regular.ttf") format('truetype'),url("https://sunordic.org/wp-content/uploads/2019/10/ProximaNova-Semibold.ttf") format('truetype');
font-weight:500;
font-style:regular;
}
If you analyze the code, they all have the same font family name: Proxima Nova. And then in your other custom css, you reference the font names as “font-family:‘Proxima Nova Black’;”, “font-family:‘Proxima Nova Bold’;” .
Please edit your custom css and make sure that you are adding the correct font name for each font file in the @font-face code. To learn more about how you can properly use the @font-face, please check this out: