PDF Export Font Style Always Glitches

You can use this CSS snippet to set your PDF export font:

@media print {
  body {
  --font-text: 'Inter' !important;
  }
}

Another version including h1:

1 Like