Acrobat Reader DC is an independent application from Apple's Preview, and produces no Preview conflicts that I have ever encountered in several years of using both, including on Catalina 10.15.3.
Preview is reasonably flexible in handling PDF, though there are some examples that contain PDF syntax that it cannot handle well (or at all), and that is why I keep Acrobat Reader DC current. Some PDF creation tools will even embed XMP requests to run Acrobat plug-ins, which obviously Preview cannot honor.
Until such time as Apple puts teeth in the deprecation of Python, Ruby, and Perl installations on macOS (possibly 10.16 in Fall 2020), one can "borrow" the Python script from within the Automator action Combine PDF Pages. You can run this on the command line (Terminal) after creating a softlink to that location to your home directory:
ln -s /System/Library/Automator/Combine\ PDF\ Pages.action/Contents/Resources/join.py ./pdfjoin.py
./pdfjoin.py --output ~/Desktop/joined.pdf ./first.pdf ./second.pdf ./nth.pdf

This will not merge specific pages, from a donor PDF, but rather the entire PDF(s) are appended to the first specified PDF, and that result is in the designated output file, not the first PDF in the command sequence.