What problem does it solve? Adding custom fonts to a Rango app often causes flash of unstyled text (FOUT), invisible text (FOIT), or slow external requests. This Skill shows how to load fonts correctly with preload hints so text renders fast and consistently. ## Core Features & Use Cases - Google Fonts Setup: Add preconnect hints and stylesheet links in the Document component for external font providers. - Self-Hosted Fonts: Define @font-face rules for woff2 files in public/fonts/ and preload the critical weight. - Fontsource with Vite: Install @fontsource-variable packages so fonts are bundled by Vite with content-hashed cache busting and no external requests. - Use Case: You are building a Rango app with Tailwind and want the Inter variable font bundled locally, wired into your @theme tokens, with no runtime CDN dependency. ## Quick Start Add the Inter variable font to my Rango app using Fontsource and wire it into my Tailwind theme.