/**
 * Site-wide typography from System settings → Appearance.
 * <body> carries .site-font and a preset modifier (see lib/site-font.js).
 */

body.site-font {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Admin chrome inherits the preset chosen in System settings → Appearance (never a parallel stack). */
body.site-font .admin-layout,
body.site-font .admin-main {
  font-family: inherit;
}

body.site-font.site-font--plus-jakarta {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body.site-font.site-font--inter {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
}

body.site-font.site-font--dm-sans {
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
}

body.site-font.site-font--source-sans-3 {
  font-family: "Source Sans 3", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body.site-font.site-font--system {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}
