Poppins & Lora
A friendly, geometric sans heading meets an elegant, highly readable serif for the body. Approachable yet sophisticated.
friendly
contemporary
literary
blog
agency
landing page
Quick Integration
/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&family=Lora:wght@400;500&display=swap');
/* CSS Variables */
:root {
--font-heading: 'Poppins', serif;
--font-body: 'Lora', sans-serif;
}
/* Base Styles */
h1, h2, h3, h4 {
font-family: var(--font-heading);
}
body {
font-family: var(--font-body);
}