@
hidden.platypus - if you look at the Live CSS Panel in the editor, it will show the styles that are used to create the 'final style'.
I imported your docx into editor, here are a couple of examples of what I'm seeing in Live CSS.
I don't see the problem - the final styles have a font specified. And what I see in Word, the editor preview, and the ebook viewer, look pretty much the same to me.
Here is the style sheet the DOCX import generated
Spoiler:
body {
font-family: "Arial", sans-serif;
font-size: 13pt;
color: #2E74B5;
}
/* In word all paragraphs have zero margins unless explicitly specified in a style */
p, h1, h2, h3, h4, h5, h6, div {
margin: 0;
padding: 0;
}
/* In word headings only have bold font if explicitly specified */
h1, h2, h3, h4, h5, h6 {
font-weight: normal;
}
/* Setting padding-left to zero breaks rendering of lists, so we only set the other values to zero and leave padding-left for the user-agent */
ul, ol {
margin: 0;
padding-top: 0;
padding-bottom: 0;
padding-right: 0;
}
/* The word hyperlink styling will set text-decoration to underline if needed */
a {
text-decoration: none;
}
sup.noteref a {
text-decoration: none;
}
h1.notes-header {
page-break-before: always;
}
dl.notes dt {
font-size: large;
}
dl.notes dt a {
text-decoration: none;
}
dl.notes dd {
page-break-after: always;
}
dl.notes dd:last-of-type {
page-break-after: avoid;
}
span.tab {
white-space: pre;
}
p.index-entry {
text-indent: 0;
}
p.index-entry a:visited {
color: blue;
}
p.index-entry a:hover {
color: red;
}
.block_1 {
padding-top: 0;
margin-bottom: 12pt;
color: black;
}
.block_2 {
page-break-inside: avoid;
page-break-after: avoid;
margin-left: 28.8pt;
margin-top: 12pt;
padding-bottom: 0;
margin-bottom: 0;
font-family: "Cochin LT", serif;
font-size: 24pt;
text-align: center;
}
.block_3 {
padding-top: 0;
padding-bottom: 0;
margin-bottom: 12pt;
color: black;
}
.block_4 {
padding-top: 0;
padding-bottom: 0;
margin-bottom: 12pt;
font-family: serif;
font-size: 10pt;
color: black;
}
.block_5 {
margin-left: 28.8pt;
padding-top: 0;
padding-bottom: 0;
margin-bottom: 8pt;
font-family: "URW Palladio L", serif;
font-size: 12pt;
color: black;
}
.block_6 {
page-break-inside: avoid;
page-break-after: avoid;
margin-left: 28.8pt;
padding-top: 0;
margin-top: 12pt;
padding-bottom: 0;
margin-bottom: 0;
font-family: "Cochin LT", serif;
font-size: 24pt;
text-align: center;
}
BR