/* Laitent Design System — global CSS entry point.
   Consumers link THIS file. It is only @import lines: tokens + fonts +
   any font webservice. Everything reachable from here ships to consumers. */

/* Webfonts from Google Fonts (Inter Tight ships locally via fonts.css) */
@import url("https://fonts.googleapis.com/css2?family=Libre+Caslon+Text:wght@400;700&family=Inter:wght@400;500;600&display=swap");

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

/* Sensible base so links never fall back to browser blue */
:root { color-scheme: light; }
a { color: var(--glacier); text-decoration: none; transition: color var(--dur-fast) var(--ease-standard); }
a:hover { color: var(--glacier-deep); }
