Adding a font to my theme

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?

Is it possible to get the URL of your store?
Could you check your code inspector to see if the font is in 404?

i found the solution

it seems like it needs to be written as

body {
  margin: 0;
  font-family: "Proxima Nova", sans-serif !IMPORTANT;
}

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", sans-serif !IMPORTANT;
}

thank you for your time