ThemeTypography Typography You can install it by typing the below command in your terminal: _10npm install @fontsource/inter or _10yarn add @fontsource/inter theme/index.js_21import { createTheme } from "@mui/material";_21_21// font variants_21import "@fontsource/inter/400.css";_21import "@fontsource/inter/500.css";_21import "@fontsource/inter/600.css";_21import "@fontsource/inter/700.css";_21_21let theme = createTheme({_21 typography: {_21 fontFamily: "'Inter', sans-serif",_21 body1: { fontSize: 16 },_21 body2: { fontSize: 14 },_21 h1: { fontSize: 48, fontWeight: 700, lineHeight: 1.5 },_21 h2: { fontSize: 40, fontWeight: 700, lineHeight: 1.5 },_21 h3: { fontSize: 36, fontWeight: 700, lineHeight: 1.5 },_21 h4: { fontSize: 32, fontWeight: 600 },_21 h5: { fontSize: 28, fontWeight: 600, lineHeight: 1 },_21 h6: { fontSize: 18, fontWeight: 500 }_21 }_21}); Reference https://mui.com/material-ui/react-typography/#install-with-npm (opens in a new tab) ShadowsMUI Component Override