/* Greda v0.2.0 — reusable entry point.
   The cascade order is declared here instead of being inferred from import
   order, so a consumer can reason about it without opening every file.

   This file chains three imports, which is four requests in series. Over a
   CDN, link tokens.css, base.css and components.css directly instead: same
   result, three parallel requests, still no build step. */
@layer greda.tokens, greda.reset, greda.base, greda.utilities, greda.components;

@import url("./tokens.css");
@import url("./base.css");
@import url("./components.css");
