/* OpenProblem Design System — global entry point.
   Consumers link this one file. Import order: fonts → tokens. */
@import url('tokens/fonts.css');
@import url('tokens/colors.css');
@import url('tokens/typography.css');
@import url('tokens/spacing.css');
@import url('tokens/effects.css');

/* ── Typographic polish ───────────────────────────────────────────────
   Global type-rendering refinements. Targets the real h1/h2/h3/p tags
   the kit renders; does NOT set font-size/line-height/letter-spacing, so
   it never conflicts with inline type styles. Rendering only — no color,
   spacing, or layout changes. */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
}
h1, h2, h3 { text-wrap: balance; }   /* tighter, more even headline ragging */
p          { text-wrap: pretty; }    /* no typographic orphans/rivers in body copy */
