Times New Roman shows up everywhere résumés, legal docs, academic papers and plenty of site owners still want to use it on the web. The problem? It's a system font that wasn't designed for screens, and pairing it with the wrong typeface can make a responsive layout look dated or broken at different screen sizes. Choosing the right Google Fonts that pair with Times New Roman for responsive layouts helps you keep that classic feel while making sure your text stays readable on phones, tablets, and desktops alike.
Times New Roman carries a sense of formality and trust. Law firms, academic publishers, and news outlets sometimes lean on it for that reason. It's available on virtually every operating system, which means it loads instantly with no extra HTTP requests. The trade-off is that it renders inconsistently across devices it looks sharp on Windows but thinner on macOS, and it can feel cramped at small sizes on mobile. That's where a well-chosen Google Font companion comes in: it balances the formality of Times New Roman with better screen rendering and more flexible sizing.
A responsive font pairing needs to hold up when the layout shifts from a wide desktop screen to a narrow mobile viewport. Here's what to check:
For a deeper look at how serif and sans-serif combinations work on web pages, see our breakdown of serif and sans-serif font combinations for web pages.
Below are proven pairings. In each case, Times New Roman stays in the role it fits best often as the heading font or the body font depending on context while the Google Font handles the other job and loads reliably on every device.
Open Sans is one of the most readable sans-serifs on screens. Its generous x-height and open letterforms contrast with the tighter structure of Times New Roman without clashing. Use Times New Roman for headings and Open Sans for body text at 16–18px. This pairing works well for editorial sites and professional services where a formal tone still needs to feel approachable.
Roboto's geometric skeleton and neutral personality make it a flexible partner. It holds up at very small sizes, which is useful for mobile navigation, captions, and UI labels. Pair Times New Roman in article headings with Roboto at 15–16px for body text. The slight mechanical quality of Roboto gives the layout a modern edge that offsets the old-fashioned serif.
Montserrat has a geometric, slightly condensed shape that draws a clear contrast with the narrow letterforms of Times New Roman. This pairing suits hero sections and landing pages where you want bold, clean headings in Montserrat and long-form reading text in Times New Roman. Keep Montserrat at font-weight 600 or 700 for headings to avoid it looking too thin next to the heavier serif.
If you want to stay in the serif family, Merriweather is a screen-first serif that was specifically designed for body text. Its wider letter spacing and sturdier strokes solve many of the legibility issues Times New Roman has at small screen sizes. Use Times New Roman for display headings at 28px+ and Merriweather for reading text at 16–18px. Both are serifs, so the mood stays cohesive.
Adobe's Source Sans Pro is clean, professional, and has a slightly humanist warmth that echoes some of the calligraphic roots in Times New Roman. This makes the two feel related even though one is sans and the other is serif. It works especially for data-heavy pages dashboards, reports, academic sites where Times New Roman handles headings or quotes and Source Sans Pro handles tables, labels, and body text.
Lora is a well-balanced serif with moderate contrast and brushed curves. It's a strong substitute when you want the feeling of Times New Roman but need better on-screen rendering. Some designers use Times New Roman only for pull quotes or section headers and let Lora handle the main reading text. The two serifs share enough DNA to feel unified, but Lora's optimized hinting keeps it sharp at body sizes.
PT Sans was built for legibility across a range of sizes and devices. Its open counters and generous spacing make it a safe choice for mobile-first layouts. Use it at 16px for body copy and pair it with Times New Roman in headings. The contrast is strong enough for clear hierarchy, but the professional tone stays consistent.
Playfair Display is a high-contrast display serif inspired by the late Enlightenment era. It draws a sharper, more dramatic contrast when placed next to Times New Roman's even strokes. Use Playfair Display for large hero headings (32px+) and Times New Roman for body or subheadings. This combination suits magazine-style layouts, luxury branding, and editorial portfolios.
The CSS setup matters as much as the font choice. Here's a practical approach:
&display=swap to the Google Fonts URL.body { font-size: 1.125rem; } which equals 18px at default browser settings.clamp() for headings so they shrink and grow smoothly: h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); }font-family: 'Open Sans', Arial, Helvetica, sans-serif; for the Google Font and font-family: 'Times New Roman', Times, Georgia, serif; for the system font.Getting the heading and body text pairing right for accessibility also means checking contrast ratios and minimum font sizes not just aesthetics.
<link rel="preload" as="font" crossorigin href="font-url.woff2">clamp() for heading sizes so they scale fluidly.display=swap to avoid invisible text.Start by picking one pairing from this list Open Sans with Times New Roman is the safest starting point for most projects. Set it up with the CSS approach above, test it at three breakpoints, and adjust weights and spacing until both fonts feel balanced. You can always explore more advanced combinations once the basics are solid.
Try It FreePerfect Font Pairings for Every Project