/* ===========================================================================
   GlobalDWS Design System — root stylesheet
   ----------------------------------------------------------------------------
   Single entry point for consumers. Link THIS file and you get:
     1. The generated design tokens (light/base theme)      → tokens/dist/css/tokens.css
     2. IBM Plex web fonts + legacy --gdws-* aliases         → colors_and_type.css
     3. The three theme overlays (activate via data-theme)   → tokens.*.css

   Usage:
     <link rel="stylesheet" href="styles.css" />
     <html data-theme="dark">      ← opt into a theme (dark | portal | greeter)

   Token source of truth lives in tokens/src/ ; regenerate dist with
   `node tokens/build.mjs`.
   =========================================================================== */

@import url("colors_and_type.css");
@import url("tokens.dark.css");
@import url("tokens.portal.css");
@import url("tokens.greeter.css");
