Changing Page Title Typeface

Hi,

I have been trying to change the typeface Roboto Slab, used for the page titles, to the same typeface as the body text. I have gone into the CSS Editor and changed the following:

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
color: #006A65;
font-weight: 700;
font-family: ‘Open Sans’, sans-serif;

Have I changed the right bit? My page titles now appear in something that looks like Times Italic!

Here is a link to the page:
http://www.picot.co.uk/contact/

I am trying to change the bit that says “Contact” before the address info.

Sorry, I am very new to Wordpress!
Thanks for your help in advance!

Never, ever edit code directly into style.css and use Child Theme instead or at least add custom CSS to field inside Theme Options - Other.

Your code has encoding issues and also formatting is of as is not the same as '

Proper code would be like this:

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    color: #006A65;
    font-weight: 700;
    font-family: 'Open Sans', sans-serif; 
}

Hi Aigars,

Thank you for your very quick reply. You have been very helpful. I have decided to install the Google Fonts plugin to help me, and it has worked.