/* ============================================================
   Afula Underground Design System
   Global CSS entry point. Consumers link THIS file only.
   Keep this file as @import lines (plus the tiny base reset).
   ============================================================ */

@import "./tokens/fonts.css";
@import "./tokens/colors.css";
@import "./tokens/typography.css";
@import "./tokens/spacing.css";

/* Minimal base so specimen cards & kits inherit the brand voice */
:root {
  color-scheme: light;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text-on-light);
  background: var(--surface-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
