/* tokens/base.css — minimal base styles so specimen cards and component
   previews inside this design-system project render on-brand.
   The full production cascade lives in src/foundation.css (inlined into
   every shipped template). */
body {
  background: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-mono);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  margin: 0;
}
::selection {
  background: var(--selection-bg);
  color: var(--selection-text);
}
