[easy][storybook] Fix all the fonts in Storybook. (#165327)

## Summary

Google's API for loading fonts _might_ be having a problem, (or the
syntax changed somewhat). The `slnt` parameter determines the "slant"--
italics-- and while the second portion _should_ state the font for zero
slant, it isn't working. As a result, _all fonts_ are slanted. So I've
reverted to the pure `ital` value.

Before:

<img width="627" alt="Screenshot 2023-08-31 at 8 45 32 AM"
src="5ee4d29e-19a1-4a63-bdee-db4c8a17e6eb">

After:

<img width="583" alt="Screenshot 2023-08-31 at 8 46 43 AM"
src="67ffafd6-775a-45f2-b38e-ab2b491f223c">
This commit is contained in:
Clint Andrew Hall 2023-09-07 14:03:07 -04:00 committed by GitHub
parent 1dad269ec3
commit 8b92020c18
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -46,7 +46,7 @@
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Inter:slnt,wght@-10,300..700;0,300..700&family=Roboto+Mono:ital,wght@0,400..700;1,400..700&display=swap"
href="https://fonts.googleapis.com/css2?family=Inter:wght@300..700&family=Roboto+Mono:ital,wght@0,400..700;1,400..700&display=swap"
rel="stylesheet">
<meta name="eui-utilities" />
</head>