hi I am trying to change some titles on my website to an uploaded font of mine “Proxima-nova” I have successfully done this with Arial no problem but when I do the same thing with this font it seems to not work. Can anyone please provide assistance? My code is here:
@font-face {
font-family: "ArialMT";
src: url("{{ 'ArialMT' | https://cdn.shopify.com/s/files/1/0687/5090/1548/files/ArialMT.woff?v=1677036761 }}") format("woff"),
url("{{ 'ArialMT' | https://cdn.shopify.com/s/files/1/0687/5090/1548/files/ArialMT.woff2?v=1677036761 }}") format("woff2");
}
<p><span style="font-weight: 400;">p { font-family: "ArialMT"!important; }</span></p>
@font-face {
font-family: "Proxima_Nova_Font";
src: url("{{ 'Proxima_Nova_Font' | https://cdn.shopify.com/s/files/1/0687/5090/1548/files/Proxima_Nova_Font.woff?v=1677116655 }}") format("woff"),
url("{{ 'Proxima_Nova_Font' | https://cdn.shopify.com/s/files/1/0687/5090/1548/files/Proxima_Nova_Font.woff2?v=1677116655 }}") format("woff2");
}
<p><span style="font-weight: 400;">h1 { font-family: "Proxima_Nova_Font"!important; }</span></p>
.p{
font-size: 10px !important;
font-family: "ArialMT"!important;
}
.product__title h1 {
font-size: 9px !important;
font-family: "Proxima_Nova_Font"!important;
}
link to my store is: https://droughtinc.myshopify.com/products/explorer-shirt-1-1
I attached a screenshot of what the font should look like vs what it’s showing up as


