// Gudjo — production app
// Hardcoded defaults from design: visne palette, Cormorant Garamond, 45% texture.

function GudjoApp() {
  const palette = PALETTES.visne;
  const serif = SERIFS.cormorant.stack;
  const texture = 45;

  return <GudjoPage palette={palette} serif={serif} texture={texture} />;
}

const root = ReactDOM.createRoot(document.getElementById('app'));
root.render(<GudjoApp />);
