/* ============================================
   Turbo Web Styles - Global Base
   ============================================

   True global element rules that use design tokens from theme.css.
   Applied once per page. Load after theme.css.

   What belongs here: body, and future shared element-level baselines
   (e.g. a, img, form-element resets) if they become genuinely universal.
   What does NOT belong here: component styles, utility classes, or tokens.
   ============================================ */

body {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  color: var(--color-text-primary);
  background-color: var(--color-background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
