diff --git a/scss/global/_fonts.scss b/scss/global/_fonts.scss index 46a6f611..477ed759 100644 --- a/scss/global/_fonts.scss +++ b/scss/global/_fonts.scss @@ -66,12 +66,17 @@ } // Direct CSS rules with higher specificity to override FoundryVTT defaults -h1, h2, h4, h5, +h1:not(.window-title), h2, h4, h5, .ds4-currency-title, .ds4-embedded-document-list-title { font-family: var(--ds4-font-heading) !important; text-transform: uppercase; - font-weight: 100; font-weight: 100 !important; - text-rendering: optimizeSpeed; +} + +// Keep window titles readable with standard font +.window-title { + font-family: var(--font-sans) !important; + font-weight: 600 !important; + text-transform: none; }