/*
	Main stylesheet — a manifest, nothing else.

	Loaded by inc/enqueue.php as the `sd-main` handle. Colours used to be
	overridden at runtime via an inline :root{} block a Style Guide options
	page attached to this same handle (inc/style-guide.php) — removed, so
	tokens.css below is now the only place any of these values are set.

	Order matters: tokens define the variables everything else consumes, and the
	cascade runs top to bottom.

	No build step. @import is a serial fetch, which is a real (if small) cost —
	acceptable here because there are nine files and HTTP/2 multiplexes them. If
	this ever grows past a dozen, concatenate rather than adding a bundler.
*/

/* @font-face declarations, so a face is defined before anything uses it. Empty
   in the starter — the theme makes no font requests until a project adds one. */
@import "fonts.css";
@import "tokens.css";
@import "reset.css";
@import "base.css";
@import "typography.css";
@import "layout.css";
@import "components.css";
@import "utilities.css";
