/* SooRich Design System — global stylesheet entry point.
   Keep this file as @import lines only; add new token files here. */

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

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--surface-page);
  color: var(--text-primary);
}
