-Use the Title style for top-level admin panel titles.
-Character spacing - .03em
+### Overview
+
+All Catalyst components and text use default styles as specified in the Typography component and theme. See the [Material-UI docs for Typography](https://material-ui.com/api/typography/) for more details.
+
+### Types
+
+Use these default types by specifying the correct `variant` from below:
+
+#### Headers
+
+Use headers in the Primary App Bar, the titles of Cards, Inline Alerts, the Confirm Dialog and more. Header text by default is not bolded. Use `fontWeightSemiBold` to add emphasis.
+
+```jsx
+import Typography from "@material-ui/core/Typography";
+import { typography } from '@material-ui/system';
+
-**Usage**
-Use the Heading style for card titles.
-**Specs**
-Weight - Regular
-Size - 1rem
-Line height - 1.25
-Character spacing - .03em
+```
+
+#### Body text
+
+Body text is used in Tables and various Card content.
+
+```jsx
+import Typography from "@material-ui/core/Typography";
+
+
+ body1. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quos blanditiis tenetur
+ unde suscipit, quam beatae rerum inventore consectetur, neque doloribus, cupiditate numquam
+ dignissimos laborum fugiat deleniti? Eum quasi quidem quibusdam.
+
+
+ body2. Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quos blanditiis tenetur
+ unde suscipit, quam beatae rerum inventore consectetur, neque doloribus, cupiditate numquam
+ dignissimos laborum fugiat deleniti? Eum quasi quidem quibusdam.
+
+```
-
-**Usage**
-Use the Subheading style to denote new sections within cards.
-**Specs**
-Weight - Regular
-Size - 1.125rem
-Line height - 1.25
-Character spacing - .03em
-
+#### Captions
-
Body Text
-
Label Text
-
Caption Text
-
-**Usage**
-The Body text style is used widely throughout the UI. Any text that isn’t a title, heading, subheading, label or caption would generally use the Body style.
-
-**Specs**
-Weight - Regular
-Size - 1rem
-Line height - 1.5
-Character spacing - .03em
-
+Captions are used in Chips and help text under form fields, often in a lighter color.
-
-**Usage**
-Use labels with form field and input elements to signify the element’s function to the user.
-**Specs**
-Weight - Regular
-Size - .875rem
-Line height - 1.25
-Character spacing - .02em
+```jsx
+import Typography from "@material-ui/core/Typography";
+
+
+ caption text
+
+```
+
+#### Buttons
+
+Button text always uses font weight of semibold, unless it is a text-only button. Button text can be in dark colors, or white.
-
-**Usage**
-Use the Caption style for help/hint text. It’s used with some form fields which require a description, and can also be used stand-alone within a card when necessary.
-
-**Specs**
-Weight - Regular
-Size - .875rem
-Line height - 1.25
-Character spacing - .02em
+```jsx
+import Typography from "@material-ui/core/Typography";
+
+
+ Button
+
+```
\ No newline at end of file