/* LifenLearn Design System — token entry point for learn.lifenlearn.com.
   Linked before app.css / theme.css.

   Two deliberate deviations from the shipped manifest:

   1. tokens/fonts.css is NOT imported. The LMS self-hosts Newsreader /
      Nunito Sans / JetBrains Mono / Noto Devanagari as woff2 (assets/css/fonts.css)
      so the installed PWA keeps its typography offline and nothing is fetched
      from a third party.
   2. tokens/base.css is NOT imported. It sets global element defaults
      (body font, heading margins, link colours, focus). The LMS already owns
      those in app.css, and this app is in daily use — importing them would
      shift spacing for no gain. Tokens are what we want shared; base styles
      stay per-app.

   Values are byte-identical to the design system. */
@import url('./tokens/colors.css');
@import url('./tokens/typography.css');
@import url('./tokens/layout.css');
