Menu font

Hi there!
I’d like to have both post titles and widget titles in the same font as the menu, and change the headers (h1, h2, etc.) of the posts to times new roman.

How can I achieve it?

Thanks a lot!

Website: travelmisadventures.com

Hi @travelmisadventures,

I hope you are well today and thank you for your question.

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Additional CSS

#secondary .widget .widget-title,
.entry-title a,
.entry-title {
        font-family: 'Montserrat', sans-serif;
}

.entry-content h1 {
        font-family: "Times New Roman", Times, serif;
}

Best Regards,
Movin