Hello @GlennK92
The custom font you added using the @font-face rule in CSS will not automatically show up in the typography settings of the Shopify theme editor. The typography settings in the theme editor are typically designed to work with the fonts included in the theme itself or the fonts provided by Shopify.
If you want to use the custom font you added with the @font-face rule, you would need to apply it through custom CSS rather than relying solely on the theme editor’s typography settings.
To use the custom font with custom CSS in Shopify, you can follow these steps:
- Open the Shopify theme editor for your store as described in the previous response.
- Look for a section or panel in the theme editor where you can add custom CSS. It may be labeled as “Custom CSS,” “Additional CSS,” or something similar.
3.In the custom CSS section, you can apply the custom font to the desired elements using the font-family property, similar to the example I provided earlier:
body {
font-family: "Monument Grotesk", sans-serif;
}
Here, “Monument Grotesk” should be replaced with the actual font name you specified in the @font-face rule.
- Save your changes.
By adding the custom CSS with the font-family property, you can override the default font styles and apply your custom font to specific elements or classes on your website.
Keep in mind that applying custom CSS may require a theme that allows for such modifications or the use of a custom or third-party theme. Additionally, if your theme has a built-in option to add custom CSS code, you may need to enable it or check the theme’s documentation for specific instructions.
Keep in mind that applying custom CSS may require a theme that allows for such modifications or the use of a custom or third-party theme. Additionally, if your theme has a built-in option to add custom CSS code, you may need to enable it or check the theme’s documentation for specific instructions.
If you have further questions or need more assistance with Shopify or any other topic, feel free to ask!