uploaded on another account by accident (uploaded on a store that i purchased this is another one im building, saying that because the previous guy i purchased the store from apparently scammed someone)
For custom fonts and or settings to control theme it’s an advanced theme customization.
See the dev docs to add other settings types to then be used to in font rendering logic.
Or reach out to me for theme customization services. click profile pic on forums for options to connect, ALWAYS provide context in new communications
From your Shopify Admin, go to Online Store > Themes.
Find your current theme, click the “…” button (Actions), and then select Edit code.
On the left, find the Assets folder.
Click Add a new asset.
You have the font URL, so first, download the Dream-Avenue.woff2 file to your computer from that link. Then, “Upload file” option to upload it. Make sure the filename is simple, like dream-avenue.woff2.
Now, you need to tell your theme that this new font exists.
Find and click on your main CSS file. It is most likely named base.css or theme.css.
Scroll to the very bottom of this file and paste the following code:
Ahh yes, this is definitely possible! This is a classic web design task that you can easily do in Shopify’s Rich Text Editor (the editor you use for product descriptions, pages, and blog posts).
Go back to your base.css file or theme.css in the code editor.
At the very bottom, right below the @font-facefont-facefont-facefont-face code you already added, paste this new CSS class:
From now on, whenever you need to change the font style within a text or paragraph, simply wrap the specific word or phrase with a or tag and add the font class to it.
For example, if you have this normal sentence:
“Hello Community”
You can add a custom font like this:
Hello Community
After that, you can use the .font-dream-avenue class anywhere in your store to instantly apply your custom font to any text you want.
Upload the .woff2 to Settings > Files (or assets if developing locally).
Register font with @font-face pointing to the uploaded file and add a CSS class that uses it.
To change fonts mid-sentence, wrap the words with … — that will only change that span.
You can’t fully add your file into Shopify’s built-in font library for theme editor; instead create theme settings or CSS classes that apply your custom font so merchants can pick it indirectly.
For anyone that is interested in this topic, i found a solution and its using Unicode ranges
u can ask ChatGPT whats that and he will do anything u need