/* =========================================================================
   L'Atelier de MIA — Global Foundation
   Imports tokens, sets canvas background and foreground default, loads fonts.
   No other rules. See Master Playbook §8.
   ========================================================================= */

@import url('./tokens.css');

/* Font loading — the two family files are brought in from Google Fonts via
   <link> tags in each page's <head> (kept there so preconnect can run). This
   file declares the fallback stack only. */

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    background: var(--canvas);
    color: var(--fg);
    font-family: var(--font-sans);
    font-size: var(--type-body-ui-size);
    font-weight: var(--type-body-ui-weight);
}
