I have tried multiple different avenues to try to get custom fonts to work and at this point, it has changed my headlines to a serif font, which isn’t what is selected in the menu, indicating the code is kind of working, but can’t find the correct font file?
I have uploaded my fonts to settings/files and have also tried adding them to the assets.
I am working in the symmetry theme
Current code with font files under settings/files
I followed instructions from: https://ezfycode.com/blog/add-custom-fonts-to-shopify
Added to theme.liquid
{% include ‘custom-fonts’ %}
Under Custom-fonts snippet:
@font-face { font-family: “nexa_bold”; src: url('[https://cdn.shopify.com/s/files/1/0561/1526/5587/files/nexa_bold_60c3e7e8-bc11-46fa-81d1-13b701405b2b.woff2?v=1664382288](https://cdn.shopify.com/s/files/1/0561/1526/5587/files/nexa_bold_60c3e7e8-bc11-46fa-81d1-13b701405b2b.woff2?v=1664382288)') format('woff2'), url('[https://cdn.shopify.com/s/files/1/0561/1526/5587/files/nexa_bold_2d4ff367-fc7e-45e2-845d-6a2b0c4f8bb4.woff?v=1664382286](https://cdn.shopify.com/s/files/1/0561/1526/5587/files/nexa_bold_2d4ff367-fc7e-45e2-845d-6a2b0c4f8bb4.woff?v=1664382286)') format('woff'); font-weight: normal; font-style: normal; } h1, h2 { font-family: "nexa_bold" !important; }Thank you so much in advance for your help!