Well, you'd set the fonts you prefer for the various page elements in your stylesheet. But as I said, if a font you specify isn't on the visitor's hard drive, it won't display, and they'll see one of the fallback fonts you specify.
So how common is Edwardian Script?
Try changing this in your stylesheet...
Code:
#tagline
{
color: #000000;
font-size: 6em;
text-align: center;
vertical-align: middle;
}
to this...
Code:
#tagline
{
color: #000000;
font-family: 'Edwardian Script', cursive;
font-size: 6em;
text-align: center;
vertical-align: middle;
}
Rob