Typography

Google Fonts

1) Change the google fonts link as per your choice : index.html
                        
<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="utf-8" />
        <link
        href="https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap"
        rel="stylesheet"
        />
    </head>

    <body>
    ...
    </body>
</html>
                        
                    
2) Change Font family : default-theme.css
                        
/* Default theme fonts */
--theme-font: Inter, sans-serif;