HI @Uhrick
That would have been helpful - sorry.
I added the code below to the theme.liquid
% style %}
@font-face {
font-family: ‘Renown Monoline Sans’;
src: url(‘{{ ‘Renown-Monoline-Sans.otf’ | asset_url }}’) format(‘opentype’);
font-display: swap;
}
@font-face {
font-family: ‘Think-Pink-Regular’;
src: url(‘{{ ‘Think-Pink-Regular.otf’ | asset_url }}’) format(‘embedded-opentype’),
url(‘{{ ‘Think-Pink-Regular.ttf’ | asset_url }}’) format(‘truetype’);
font-weight: normal;
font-style: normal;
font-display: swap;
}
{{ settings.type_body_font | font_face: font_display: ‘swap’ }}
{{ body_font_bold | font_face: font_display: ‘swap’ }}
{{ body_font_italic | font_face: font_display: ‘swap’ }}
{{ body_font_bold_italic | font_face: font_display: ‘swap’ }}
{{ settings.type_header_font | font_face: font_display: ‘swap’ }}
:root {
–font-body-family:‘Renown Monoline Sans’, {{ settings.type_body_font.fallback_families }};
–font-body-style: {{ settings.type_body_font.style }};
–font-body-weight: {{ settings.type_body_font.weight }};
–font-heading-family:‘Think-Pink-Regular’, {{ settings.type_header_font.fallback_families }};
–font-heading-style: {{ settings.type_header_font.style }};
–font-heading-weight: {{ settings.type_header_font.weight }};
And added this to base.css to change some of the section headings
}
.collage-section h3{
font-family: ‘Renown Monoline Sans’ !important;
}
.collection h3{
font-family: ‘Renown Monoline Sans’ !important;
}
I also uploaded the font files to assets before changing the code. Sorry if the code looks a bit messy. I’ve just copied it directly.
Thanks so much for offering support.