The CSS for the Font Awesome-based admonition icons miss a font-family declaration for the actual admonition title and thus render in Times:
This is fixed by explicitly declaring font-family: var(--font-family); for the already existing .doc .admonitionblock .icon i::after declaration in asciidoctor.css:
The CSS for the Font Awesome-based admonition icons miss a font-family declaration for the actual admonition title and thus render in Times:
This is fixed by explicitly declaring
font-family: var(--font-family);
for the already existing.doc .admonitionblock .icon i::after
declaration inasciidoctor.css
: