1/* In your main CSS file (e.g., app/globals.css) */2@import 'passport-ui/styles.css';3 4/* Override the default font after importing passport-ui styles */5@font-face {6 font-family: "Custom Font";7 src: url("./fonts/custom-font-regular.woff2") format("woff2"),8 url("./fonts/custom-font-regular.woff") format("woff");9 font-weight: 400;10 font-style: normal;11 font-display: swap;12}13 14@font-face {15 font-family: "Custom Font";16 src: url("./fonts/custom-font-bold.woff2") format("woff2"),17 url("./fonts/custom-font-bold.woff") format("woff");18 font-weight: 700;19 font-style: normal;20 font-display: swap;21}22 23:root {24 --font-sans: "Custom Font", ui-sans-serif, system-ui, sans-serif;25}