Please note that there are multiple places in Montezuma's CSS files where the
font-family property is used:
body in content.css
The heading tags
h1, h2, h3, h4, h5, h6 in content.css
.hentry .comment-bubble in posts.css
#menu1-smooth a in menus_menu1.css
#sitetitle in various.css
#tagline in various.css
In addition, certain plugins may have their own CSS, but I would guess that it would be rare for them to set the font-family property.
So if you wanted to make sure the entire site used the same font-family, you could either:
1) Go through all of the virtual CSS files and change the
font-family property for each selector to the style you want.
2) Go through all of the virtual CSS files and
delete the
font-family property for each selector except the modified
body element.
3) Create a rule at the end of various.css and override all of the previous font-family properties in one shot:
Code:
body,
h1, h2, h3, h4, h5, h6,
.hentry .comment-bubble,
#menu1-smooth a,
#sitetitle, #tagline {
font-family: "Georgia", "Times New Roman", serif;
}