I’m currently using two custom fonts on a site and only one is loading correctly.
I’m at my wits’ end.
Both fonts have the same CSS in my css-variables.liquid file and both are set up identically, I’ve checked the files are loaded and tried multiple approaches
in css-variables.liquid
@font-face {
font-family: 'Bebas Neue';
src: url('{{"BebasNeue-Regular.woff2" | asset_url}}') format('woff2'),
url('{{"BebasNeue-Regular.woff" | asset_url}}') format('woff'),
url('{{"BebasNeue-Regular.ttf" | asset_url }}') format('truetype');
}
@font-face {
font-family: 'Jakarta';
src: url('{{"PlusJakartaText-Regular.woff2" | asset_url}}') format('woff2'),
url('{{"PlusJakartaText-Regular.woff" | asset_url}}') format('woff'),
url('{{"PlusJakartaText-Regular.ttf" | asset_url }}') format('truetype');
}
I’ve also tried in theme.css.liquid
@font-face {
font-family: "Plus Jakarta Sans";
src: url("PlusJakartaSans-Regular.woff2") format("woff2"),
url("PlusJakartaSans-Regular.woff") format("woff");
}
@font-face {
font-family: "Bebas Neue";
src: url("BebasNeue-Regular.woff2") format("woff2"),
url("BebasNeue-Regular.woff") format("woff");
}
And had no luck. Only Plus Jakarta Sans will load.
Can anyone offer any help?