Adding another font family

I have setup the font that I use throughout my site using (Lato) and I want to use another font here and there on different quotes and callouts. Is this a fairly easy task to setup? I have limited knowledge around using Typekit, I think my fonts were set up using it however it’s been a few years since I set up!

Any help around just adding 1 other font family would be great.

Hi There,

You should setup a child theme first:

https://theme.co/apex/forum/t/setup-how-to-setup-child-themes/57

To add a separate google font, please add this custom CSS under style.css file locates in your child theme.

@import url('https://fonts.googleapis.com/css?family=Quicksand:400,500,700');

You can find the import CSS from this link: https://fonts.google.com/

After that add this custom CSS under style.css file as well:

.x-blockquote,
.x-callout {
     font-family: 'Quicksand', sans-serif;
}

Hope it helps :slight_smile:

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.