/* assets/custom-fonts.css.liquid */
@font-face {
font-family: 'Brice';
font-style: normal;
font-weight: 700; /* 700 is commonly used for Bold weight */
src: url("{{ 'brice-bold-webfont.woff2' | asset_url }}") format('woff2'),
url("{{ 'brice-bold-webfont.woff' | asset_url }}") format('woff');
}
@font-face {
font-family: 'Brice';
font-style: normal;
font-weight: 900; /* 900 is commonly used for Black weight */
src: url("{{ 'brice-black-webfont.woff2' | asset_url }}") format('woff2'),
url("{{ 'brice-black-webfont.woff' | asset_url }}") format('woff');
}