/* ── catppuccin-neu — one-line entry point ──────────────────────────────────
   Declares the layer order, then imports the three files into it. Consumer
   CSS stays unlayered (or in a later layer) and therefore always wins —
   overrides never need !important. The three files also work as plain
   <link> tags in this order, without this file.                             */

@layer cn.tokens, cn.utilities, cn.recipes;
@import "./tokens.css" layer(cn.tokens);
@import "./utilities.css" layer(cn.utilities);
@import "./recipes.css" layer(cn.recipes);
