Import Google Fonts and Ionicon
masterTo use the typography and icons required by the Grilli design system, include the following links in your HTML file.
Google Fonts Includes 'DM Sans' (weights 400, 700) and 'Forum'.
Ionicon Provides the icon set via ESM and a nomodule fallback.
<!-- Google Fonts -->
<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=DM+Sans:wght@400;700&family=Forum&display=swap" rel="stylesheet">
<!-- Ionicon -->
<script type="module" src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.js"></script>