/* The single entry point every app links.
 *
 * Order matters and is the whole architecture: tokens define the vocabulary,
 * base sets element defaults using it, components build on both, layout
 * arranges them into an application shell, and utilities come last so a
 * layout primitive can win over a component's own layout.
 *
 * app-themes sits directly after tokens because it does one thing: repoint the
 * accent role per app. It has to see the defaults tokens.css sets, and every
 * layer below has to see its override.
 *
 * These are @imports rather than one concatenated file because this repo has
 * no frontend build step (see packages/README.md). The cost is six serial
 * requests; if that ever matters, concatenate at build time — do not fix it
 * by making apps link the parts individually, which would mean editing every
 * app's HTML to add a file to the system.
 */
@import url("./tokens.css");
@import url("./app-themes.css");
@import url("./base.css");
@import url("./components.css");
@import url("./layout.css");
@import url("./utilities.css");
