/* ===========================================================================
   Rent & Exit — Design System
   Global entry point. Consumers link THIS file only.
   Keep this file as @import lines (plus a minimal base reset).
   =========================================================================== */

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

/* Minimal base so specimens & kits inherit the brand defaults */
:root {
  color-scheme: light;
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: var(--fw-book);
  color: var(--text-body);
  background: var(--surface-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
