So I uploaded a custom font and then did the CSS code for custom fonts.
Here it is below:
@font-face {
font-family: 'Nexa-extra-light';
src: url('https://static1.squarespace.com/static/65425d16b7fc5a251e0faf1a/t/65492c395bb98c660cfeeab1/1699294265092/nexa-extralight-webfont.woff2') format('woff2'), url('https://static1.squarespace.com/static/65425d16b7fc5a251e0faf1a/t/65492c39aa303b246f30fd2e/1699294265271/nexa-extralight-webfont.woff') format('woff');
}
@font-face {
font-family: 'Nexa-heavy';
src: url('https://static1.squarespace.com/static/65425d16b7fc5a251e0faf1a/t/65492c386469a413cae44663/1699294265153/nexa-heavy-webfont.woff2') format('woff2'), url('https://static1.squarespace.com/static/65425d16b7fc5a251e0faf1a/t/65492c39e7f70d00d0695715/1699294265177/nexa-heavy-webfont.woff') format('woff');
}
/* Custom Heading Fonts */
h1, h2, h3, h4 {
font-family:'Nexa-heavy' !important;
}
/* Custom Paragraph Fonts */
p {
font-family:'Nexa-extra-light' !important;
}
I see the changes from the client side of things, but I ca't actually find it as an option on the backend of font options. Any idea why?
Thanks for any help.