Easy Way To Change Font?

Permalink
I'm currently trying to use google fonts (using the clonemental theme) and so far no changes have been made after going into Theme > Customization > Custom CSS and pasting:

@import url(https://fonts.googleapis.com/css?family=Permanent+Marker);
p {
    font-family: 'Permanent Marker', cursive;
}
h1 {
    font-family: 'Permanent Marker', cursive;
}
h2 {
    font-family: 'Permanent Marker', cursive;
}
h3 {
    font-family: 'Permanent Marker', cursive;
}

There are no errors or anything but there are also no changes, any clue as to what I'm doing wrong? Please help!

 
MrKDilkington replied on at Permalink Reply
MrKDilkington
Hi AJTD,

The reason why you are not seeing the changes that you expect is that your CSS is not specific enough to override the existing CSS.
https://css-tricks.com/specifics-on-css-specificity/...