Up until now, I've stripped all font information out of my epubs and read with a specific font on my Kobo. I thought I'd try keeping an epub's specific fonts in the book and have a basic question:
The book I'm working with has the following in each file's <body> tag:
Code:
<body ... style="font-family:'new caledonia lt std',georgia,serif;">
Wouldn't adding that to the stylesheet's body{} style be better?
Code:
body {
/* Basic Styling for BODY Section of a File */
font-family: new caledonia lt std, georgia, serif;
height: 100%;
margin: 0;
orphans: 1;
padding: 0;
widows: 1;
}