In XSL-FO style sheet, you want to different font style definition for same line text like:

Some text text with smaller font size Another text

you have to use fo: inline tag to define in the style sheet

<fo:block font-size="14pt">
    Some text
    <fo:inline font-size="10pt"> text with a smaller font size </fo:inline>
    Another text
</fo:block>