/* Static, unhashed asset - deliberately NOT run through Vite's CSS/asset
   pipeline (see public/ vs src/ - Astro copies this byte-for-byte). Linked
   from a hand-written <link> in each page's own <head> (index.astro/
   [slug].astro/kontakt.astro), not a component style import, specifically
   so its href is identical on every page and every build. That's what
   makes Astro's client-side router keep this exact <link> element in
   place across a navigation instead of removing/re-adding it (see
   swap-functions.js: persistedHeadElement() matches any
   link[rel=stylesheet] by href - no transition:persist needed, and
   crucially this is NOT the same guarantee transition:persist itself
   gives: a transition:persist element is kept alive but still gets
   detached-then-reattached for one synchronous beat during the body swap,
   which was enough to intermittently drop this font even when it was
   linked from inside the persisted header). A component-style import
   doesn't get any of this - Astro inlines a page's own CSS bundle into a
   <style> tag below a size threshold, and <style> tags have no href-based
   dedup at all, so they're torn out and rebuilt on every navigation even
   when their content is unchanged. That used to be exactly why the
   persisted header logo (transition:persist) would briefly lose
   "Neometric Alt" and fall back to system-ui on every client-side
   navigation - see the comment in SiteHeader.astro for the full story. */
@font-face { font-family: 'Neometric Alt'; src: url("/fonts/neometric-alt/NeometricAlt-Regular.woff2") format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Neometric Alt'; src: url("/fonts/neometric-alt/NeometricAlt-Medium.woff2") format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Neometric Alt'; src: url("/fonts/neometric-alt/NeometricAlt-Bold.woff2") format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Neometric Alt'; src: url("/fonts/neometric-alt/NeometricAlt-ExtraBold.woff2") format('woff2'); font-weight: 800; font-style: normal; font-display: swap; }
@font-face { font-family: 'Neometric Alt'; src: url("/fonts/neometric-alt/NeometricAlt-Black.woff2") format('woff2'); font-weight: 900; font-style: normal; font-display: swap; }
