Typography

Google fonts

1) Change the google fonts link as per your choice : plublic/index.html
                        
<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="utf-8" />
        <link
        href="https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap"
        rel="stylesheet"
        />
    </head>

    <body>
    ...
    </body>
</html>
                        
                    
2) Change Font family : assets/global/Typography.js
                        
const typography = {
    fontFamily: "'DM Sans', sans-serif",
    body1: {
      fontWeight: 400, // or 'bold'
    },
  }