When creating word documents, PHPWord allows for defining custom paragraph styles, which in turn text content can be assigned to. The features that can be defined when creating paragraph styles seem to cover only those features that strictly relate to paragraphs -- see https://phpword.readthedocs.io/en/latest/styles.html.
When creating paragraph styles in Word, however, one can -- in addition to defining strictly-paragraph-related stuff like the paragraph's line-height -- also set properties that relate to the font styling of said paragraph. For example, one can set its (default) font-size to 16pt or its (default) font-weight to bold.
Is there a way to include such font-style-related settings in paragraph styles when creating them in PHPWord? Of course, I could add a font style to a given paragraph but while this would render the paragraph as desired in the resulting word document, the connection between an assigned paragraph style and its font-style-related features would be only accidental. If a user were to edit this document by adding another paragraph in the given paragraph style, it would look completely different, lacking all font-style-related settings.
Am I missing something here? How is defining a paragraph style that includes font-style-related settings in PHPOffice possible?