I cannot seem to to get a paid font to install in a purchased theme. I have uploaded both woff and woff2 to both files and assets. Here is the code I added to assets/theme.css.liquid
@font-face {
font-family: “ImagineForestAlternate”;
src: url(“{{ ‘ImagineForestAlternate.woff2’ | asset_url }}”) format(“woff2”),
url(“{{ ‘ImagineForestAlternate.woff’ | asset_url }}”) format(“woff”);
font-display: swap;
}
Can anyone help with this?