I'm not having any luck with a custom font displaying properly in the Roll Template output to the chat. CSS line 1 is: @import url('<a href="https://fonts.googleapis.com/css2?family=B612+Mono:ital,wght@0,400;0,700;1,400;1,700&family=Kode+Mono:wght@400..700&display=swap" rel="nofollow">https://fonts.googleapis.com/css2?family=B612+Mono:ital,wght@0,400;0,700;1,400;1,700&family=Kode+Mono:wght@400..700&display=swap</a>'); ...which loads Kode Mono into the character sheet just fine. The Roll Template... not so much. -I've tried in line reference in the Template (including using <style> at one point): <rolltemplate class="sheet-rolltemplate-custom"> <div style=style="font-family: 'Kode Mono', monospace !important;" class="sheet-container sheet-color-{{color}}"> </div> -And explicit reference to the font in the CSS for the template itself (again the font renders on the character sheet just fine, so the rest of the CSS seems to be picking it up just fine): .sheet-rolltemplate-custom { margin-left: -37px; font-family: 'Kode Mono', monospace !important; /* Added fallback font */ } -As above I've use the !important switch (no joy) but I do note that at least the monospace fallback is picked up by the template. So at least there's that. I feel I'm having a dumb here. Any advice folks?