diff --git a/css-fonts-4/Overview.bs b/css-fonts-4/Overview.bs
index 3d2d90073b4..c43eff6ac7e 100644
--- a/css-fonts-4/Overview.bs
+++ b/css-fonts-4/Overview.bs
@@ -1063,7 +1063,7 @@ Font size: the 'font-size' property
Inherited: yes
Percentages: refer to parent element's font size
Computed value: an absolute length
- Animation type: by computed value type`
+ Animation type: by computed value type
@font-face {
- font-family: BaskervilleSimple;
- src: url(baskerville-regular.woff);
+ font-family: BaskervilleSimple;
+ src: url(baskerville-regular.woff2);
}
@@ -2740,14 +2740,14 @@ Font property descriptors: the 'font-style!!descriptor', 'font-weight!!descripto
@font-face {
- font-family: BaskervilleFull;
- src: url(baskerville-regular.woff);
+ font-family: BaskervilleFull;
+ src: url(baskerville-regular.woff2);
}
@font-face {
- font-family: BaskervilleFull;
- src: url(baskerville-italic.woff);
- font-style: italic;
+ font-family: BaskervilleFull;
+ src: url(baskerville-italic.woff2);
+ font-style: italic;
}
@@ -2767,6 +2767,40 @@ Font property descriptors: the 'font-style!!descriptor', 'font-weight!!descripto
to select a particular face within a font family.
+
+ @font-face {
+ font-family: Lastima;
+ src: url(lastima-varfont.woff2);
+ font-weight: 100 399;
+ }
+
+ The above ''@font-face'' rule indicates that lastima-varfont.woff should be used when
+ 'font-weight!!property' is between 100 and 399. Depending on if there are any other ''@font-face'' rules which specify
+ font-family: Lastima, lastima-varfont.woff might be used for values of 'font-weight!!property'
+ outside of the 100 - 399 range. For more details, see the [[#font-matching-algorithm]].
+
+ As above, multiple ''@font-face'' rules may be joined together into a single
+ family, spanning multiple ranges of 'font-weight!!property', 'font-stretch!!property', and/or 'font-style!!property':
+
+ @font-face {
+ font-family: Lastima;
+ src: url(lastima-varfont-lightrange.woff2);
+ font-weight: 100 399;
+ }
+ @font-face {
+ font-family: Lastima;
+ src: url(lastima-varfont-heavyrange.woff2);
+ font-weight: 400 700;
+ }
+ The above ''@font-face'' rules indicate that
+ lastima-varfont-lightrange.woff should be used when
+ 'font-weight!!property' is between 100 and 399, whereas lastima-varfont-heavyrange.woff should be used when
+ 'font-weight!!property' is between 400 and 700.
+