Pages with different fonts - How to make them the same

I am not sure I am posting this question to the right location.

I have Wordpress running with the Salient theme. The problem I am having is I have pages with different font and I cannot figure out how to make them the same.

The one that is correct is https://www.oasisalaskacharters.com/ and I have several that are wrong like this one https://www.oasisalaskacharters.com/ketchikan-halibut-fishing-charters/

How do I change the pages?

Hi

fonts are different because you have used page builder inline css and made different font.
To fix it you can do the following:

go to => themes/salient/css/style.css line 439 you will see font-family:

h1, h2, h3, h4, h5, h6 {
   font-family: 'Open Sans';
}

make it:

h1, h2, h3, h4, h5, h6 {
   font-family: 'Open Sans' !important;
}

Thanks

Thank you. I had a different person working on my site so I guess he must have put that in place.

where can I find the inline css?

go to edit the page you will find in vc row settings or title block settings. Thanks

Thanks again for your help.