import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
// Self-hosted fonts (served same-origin behind dwaar; no Google Fonts CDN dependency).
// Bricolage Grotesque = editorial display/headings, Hanken Grotesk = body sans,
// Spline Sans Mono = structural/metric mono. Variable fonts: one import per family
// covers the full weight axis.
import '@fontsource-variable/bricolage-grotesque/index.css'
import '@fontsource-variable/hanken-grotesk/index.css'
import '@fontsource-variable/spline-sans-mono/index.css'
import './styles/index.css'
import App from './App'

createRoot(document.getElementById('root')!).render(
  <StrictMode>
    <App />
  </StrictMode>,
)
