sacreddoily, the font needs to be specified in your css. You’ll have to know what the font name was, either through recognition, viewing the “his site” page source or by contacting the site owner directly.
Once you know the font name, it’s easy to insert it into your css.
h2 {
font-family: YOUR FONT GOES HERE;
color: #666;
font-size: 14px;
text-align: left;
}
Good luck!