chateaudufaune.ariege.io/index.html
Padreug 19484825bb feat(theme): swap script display font Italianno → Tangerine
Italianno's thin calligraphic strokes broke up at the hero title's
display size (the user noted the letters appeared disconnected).
Tangerine at 700 weight reads as a heavier italic serif with cleaner
glyph shapes and holds together at 96-128px.

Updates --font-script in the Tailwind theme block plus the Google
Fonts <link> in index.html.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-06-09 12:44:38 +02:00

23 lines
947 B
HTML

<!doctype html>
<html lang="fr">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/avif" href="./src/assets/cosmic-stag.avif" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Château du Faune — centre pour l'art et l'écologie en Ariège. Résidences d'artistes, fermette, événements et hébergement au pied des Pyrénées."
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Aboreto&family=Roboto:wght@300;400;500;700&family=Tangerine:wght@700&display=swap"
rel="stylesheet"
/>
<title>Château du Faune — Centre pour l'art et l'écologie</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>