Im using the “Warehouse” theme
Im trying to add the font “proxima nova” on my development store
I added the font in my assets in woff2 form and then in my theme.css file
@font-face {
font-family: 'Proxima Nova';
src: url("{{ 'ProximaNova.woff2' | asset_url }}") format('woff2');
}
h1, h1 a, h2, h2 a, h3, h3 a, h4, h4 a, h5, h5 a, h6, h6 a, #nav li a, div.title a, .headline, .subtitle, p
{
font-family: 'Proxima Nova' !important;
}
But whats appearing in the front end isn’t the correct font
it should look like this
what am I doing wrong?


