style(globals): Import Inter font and apply to body element

- Import Inter font from Google Fonts with variable font weights
- Set body font-family to use Inter as primary font with sans-serif fallback
- Improves typography consistency across the application with a modern, professional font choice
This commit is contained in:
AmirReza Jamali
2025-11-30 15:04:15 +03:30
parent a41fc01921
commit b502b8a5f7
+5
View File
@@ -1,9 +1,14 @@
@import url("https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100&display=swap");
@import "tailwindcss"; @import "tailwindcss";
:root { :root {
--background: #ffffff; --background: #ffffff;
--foreground: #171717; --foreground: #171717;
} }
body {
font-family: "Inter", sans-serif;
}
@theme { @theme {
--background: #171717; --background: #171717;
--foreground: #ffffff; --foreground: #ffffff;