# Discourse font rendering

**URL:** https://meta.discourse.org/t/discourse-font-rendering/378897
**Category:** Support
**Tags:** rtl
**Created:** [August 16, 2025, 10:28pm UTC](https://meta.discourse.org/t/discourse-font-rendering/378897 "2025-08-16T22:28:32Z")
**Posts on this page:** 1
**Showing post:** 9

<div class="post-metadata">

### Author: ![kcahtoor](https://avatars.discourse-cdn.com/v4/letter/k/9de0a6/32.png) [@kcahtoor](https://meta.discourse.org/u/kcahtoor)
#### Post date: [September 6, 2025, 10:05pm UTC](https://meta.discourse.org/t/discourse-font-rendering/378897/9 "2025-09-06T22:05:20Z")

</div>

The issue is caused by Discourse’s default CSS font feature settings that interfere with complex script rendering:

css

```css
//Problematic default settings
font-variant-ligatures: none;
font-feature-settings: "calt" 0;

//solution is to override
 font-variant-ligatures: normal;
 font-feature-settings: normal;

```

This solved the issue with both fonts.

---

_[View the full topic](https://meta.discourse.org/t/discourse-font-rendering/378897)._
