How can I alter the font type in mobile blog preview?

On the mobile version of the site: https://q1hd6utjbreo0c7p-12859847.shopifypreview.com

I’d like to change the body font to Body Text Regular instead of the font it is under now (this is on the home page).

What code can I use to change this?

Thanks in advance!

Hi @pjk3635 ,

Go to Assets > custom.css and paste this at the bottom of the file:

.homepage-blog-mobile .rte span {
	font-family: var(--body-font-stack) !important;
}

Hope it helps!